// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... namespace LargoBase.Enums { using System; using LargoBase.Abstract; /// The tonality of the key signature (major or minor). [Serializable] public enum TonalityGenus { #region Major/Minor /// Key is major. Major = 0, /// Key is minor. [UsedImplicitly] Minor = 1 #endregion } }